home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 July: Mac OS SDK / Dev.CD Jul 97 SDK1.toast / Development Kits (Disc 1) / QuickDraw 3D / Samples / SampleCode / GeometryTest / Geometries.h < prev    next >
Encoding:
Text File  |  1996-05-21  |  457 b   |  26 lines  |  [TEXT/MPCC]

  1. // Geometries.h
  2.  
  3. #ifndef _GEOMETRIES_H_
  4. #define _GEOMETRIES_H_
  5.  
  6. /*===========================================================================*\
  7.  *
  8.  *    Types
  9.  *
  10. \*===========================================================================*/
  11. typedef struct TextureRec {
  12.     char                fileName[32];
  13.     long                size;
  14.     long                dirty;
  15.     TQ3StoragePixmap    pixmap;
  16.     TQ3ShaderObject        shader;
  17.     long                 on;
  18. } TextureRec;
  19.  
  20.  
  21.  
  22.  
  23. TQ3GroupObject BuildGeometry( int type )  ;
  24.  
  25.  
  26. #endif